home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / readline-common.postinst < prev    next >
Text File  |  2009-09-23  |  205b  |  14 lines

  1. #! /bin/sh -e
  2.  
  3. install_from_default() {
  4.   if [ ! -f $2 ]; then
  5.     cp -p $1 $2
  6.   fi
  7. }
  8.  
  9. if [ "$1" = "configure" ] && [ "$2" = "" ]; then
  10.   install_from_default /usr/share/readline/inputrc /etc/inputrc
  11. fi
  12.  
  13.  
  14.